home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / tex / xtexcad-.000 / xtexcad- / orig_src / extdef.h < prev    next >
C/C++ Source or Header  |  1993-03-04  |  476b  |  25 lines

  1. /* xtexcad  V1.2 - graphic editor for LaTeX */
  2. /* 1991 by K.Zitzmann */
  3. /* header-file extdef.h */
  4.  
  5.  
  6. #ifndef EXTERNALH
  7. #define EXTERNALH
  8.  
  9. #ifndef DGUX
  10. extern double atof(char *txt);
  11. #endif
  12. extern double sqrt(double x);
  13. extern int abs(int x);
  14. extern double fabs(double x);
  15. extern double acos(double x);
  16. extern double sin(double x);
  17. extern char *malloc(int l);
  18. extern char *getenv(char *s);           
  19. extern int chdir();                     
  20.  
  21. /* to be continued... */
  22.  
  23.  
  24. #endif
  25.